home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / Sherlock 2.0 / DevLibSrc / Main_DevLib / LIBlog.h < prev    next >
Text File  |  1995-09-26  |  570b  |  30 lines

  1. /*
  2.     devlib: header for LIBlog.c.
  3.     
  4.     source:  LIBlog.h
  5.     started: December 13, 1993.
  6.     version:
  7.         September 25, 1995.
  8.             Created log_open_vRefNum
  9. */
  10.  
  11. #ifndef LIBlog_h_
  12. #define LIBlog_h_
  13.  
  14. #pragma once
  15.  
  16. #define MAX_LOG_FILE_NAME    200
  17.  
  18. void    log_cblanks        (short n);
  19. void    log_cnl            (void);
  20. void    log_cnls        (short requested_newlines);
  21. void    log_close        (void);
  22. void    log_cout        (char);
  23. void    log_errout        (int OSErrCode);
  24. int        log_isopen        (void);
  25. void    log_open        (char * fileName);
  26. void    log_open_vRefNum(short vRefNum, char * fileName);
  27. void    log_sout        (char * s);
  28.  
  29. #endif /* LIBlog_h_ */
  30.